This example demonstrates how to load a file from a stream.
advanced_usage.loading_files.LoadFromStream
JavaScript try { const fileStream = fs.createReadStream("input.one") const metadata = new groupdocs.metadata.Metadata(fileStream); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.
GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Remove annotations from PDF files to reduce file size using the GroupDocs.Viewer Python Api....Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Reorder PDF pages during rendering with GroupDocs.Viewer for Python via .NET. Control the output page sequence....Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
The page describes how to load PDF, Word, Excel, PowerPoint documents from local disk using GroupDocs.Annotation for Java....Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article gives the knowledge about nesting search queries in object form using Java search Api....Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Check this guide to learn how to adjust PNG and JPG images size when rendering documents with Image Viewer by GroupDocs for Java....Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
The following example demonstrates how to save file in its original format with current date as a suffix:
final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions saveOptions = new SaveOptions(); saveOptions.setAddSuffix(true); saveOptions.setRasterizeToPDF(false); saveOptions.setRedactedFileSuffix(new SimpleDateFormat("dd-MM-yyyy").format(new Date())); // Saving in original format with date as DateTime.getNow().toShortDateString()a suffix redactor.save(saveOptions); } finally { redactor.close(); }...Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article explains how to replace missing font when rendering documents with GroupDocs.Viewer within your Java applications....Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
This article explains how to add document password for PDF, Word, Excel, PowerPoint and other file types using GroupDocs.Merger for .NET....Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...
Following this guide you will learn how to change PDF document page rotation angle using GroupDocs.Merger for Node.js via Java Api....Watermark Product Solution GroupDocs...Upgrade an Order Support Docs API Reference Live Demos Free Support...